home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Estrategia / scooby.swf / scripts / DefineButton2_501 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2006-06-13  |  241 b   |  15 lines

  1. on(release){
  2.    var newnum = month - 1;
  3.    if(newnum < 1)
  4.    {
  5.       newnum = 1;
  6.    }
  7.    month = newnum;
  8.    var newstring = month;
  9.    if(month < 10)
  10.    {
  11.       newstring = "0" + newstring;
  12.    }
  13.    month_txt.text = newstring;
  14. }
  15.